home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 151-175 / disk_156 / flex / flex2 / gnu.lib.src / memfull.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  128b  |  13 lines

  1. /*
  2.  * memory full warning message
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. void
  8. memory_full ()
  9. {
  10.   printf ("Memory exhausted.\n");
  11.   exit(1);
  12. }
  13.